home *** CD-ROM | disk | FTP | other *** search
- startW = _xscale;
- startH = _yscale;
- startA = _alpha;
- var onEnterFrame = function()
- {
- this.setMask(_root.bound2);
- _X = _root.cm._x;
- _Y = _root.cm._y + 3;
- _xscale = startW;
- _yscale = startH;
- _alpha = startA;
- while(_Y < _root.cam._y + _root.cam._height / 2 + 50 && !_root.bound.hitTest(_X,_Y - 5,true))
- {
- _Y = _Y + 1;
- _alpha = _alpha - 0.5;
- _xscale = _xscale - 1;
- _yscale = _yscale - 1;
- }
- };
-